home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 8351 < prev    next >
Encoding:
Text File  |  1996-08-05  |  749 b   |  35 lines

  1. Path: news.nic.utwente.nl!news
  2. From: Bas Broers <B.P.Broers@student.utwente.nl>
  3. Newsgroups: comp.lang.c
  4. Subject: Borland in-line asm
  5. Date: Sun, 03 Mar 1996 15:45:02 +0100
  6. Organization: University of Twente, Enschede, The Netherlands
  7. Message-ID: <3139B06E.40C5@student.utwente.nl>
  8. NNTP-Posting-Host: cam051312.student.utwente.nl
  9. Mime-Version: 1.0
  10. Content-Type: text/plain; charset=us-ascii
  11. Content-Transfer-Encoding: 7bit
  12. X-Mailer: Mozilla 2.0 (Win95; I)
  13.  
  14. Maybe a simple question, but how can i define a label in BASM (borland in-line assambler).
  15. For example this program
  16.  
  17.  
  18.  
  19. void main(void)
  20. {
  21.       asm {
  22.    
  23.       mov ax,0x0010
  24.       mov cx,0x0010
  25. next: inc ax
  26.       loop next 
  27.       }
  28. }
  29.  
  30.  
  31.  
  32. Gives the error: Undefined label next
  33.  
  34. Thanks: Bas Broers
  35.